runtime.gcControllerState.heapInUse (field)
15 uses
runtime (current package)
arena.go#L787: gcController.heapInUse.add(-int64(s.npages * pageSize))
arena.go#L957: gcController.heapInUse.add(int64(userArenaChunkBytes))
mgc.go#L1008: memstats.lastHeapInUse = gcController.heapInUse.load()
mgcpacer.go#L356: heapInUse sysMemStat // bytes in mSpanInUse spans
mgcscavenge.go#L151: return gcController.heapInUse.load() + gcController.heapFree.load()
mgcscavenge.go#L707: (gcController.heapInUse.load()*100)/heapRetained(), "% util",
mheap.go#L1357: gcController.heapInUse.add(int64(nbytes))
mheap.go#L1485: inUse := gcController.heapFree.load() + gcController.heapReleased.load() + gcController.heapInUse.load()
mheap.go#L1622: gcController.heapInUse.add(-int64(nbytes))
mstats.go#L437: totalMapped := gcController.heapInUse.load() + gcController.heapFree.load() + gcController.heapReleased.load() +
mstats.go#L458: if gcController.heapInUse.load() != uint64(consStats.inHeap) {
mstats.go#L459: print("runtime: heapInUse=", gcController.heapInUse.load(), "\n")
mstats.go#L468: heapRetained := gcController.heapInUse.load() + gcController.heapFree.load()
mstats.go#L504: stats.HeapSys = gcController.heapInUse.load() + gcController.heapFree.load() + gcController.heapReleased.load()
mstats.go#L522: stats.HeapInuse = gcController.heapInUse.load()
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |